[XSLT] I want to select all texts (including node names) under a node.
Posted
by user349470
on Stack Overflow
See other posts from Stack Overflow
or by user349470
Published on 2010-05-25T01:03:33Z
Indexed on
2010/05/25
1:11 UTC
Read the original article
Hit count: 294
xslt
I currently have a xml file like this:
<aaa>
<b>I am a <i>boy</i></b>.
</aaa>
How can I get the exact string as: <b>I am a <i>boy</i></b>.
? Thanks.
© Stack Overflow or respective owner